home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib7 / v_09_06 / 9n06054a < prev    next >
Encoding:
Text File  |  1995-11-01  |  228 b   |  16 lines

  1. //      HSort.Hpp  V.2.0 - 2/27/91
  2. //
  3. //    Turbo C++ V.1.0
  4. //
  5. //    Michael Kelly - Author
  6. //
  7.  
  8. #if !defined(HSORT_HPP)
  9. #define HSORT_HPP
  10.  
  11. #include "thing.hpp"
  12.  
  13. void heapsort( size_t num_things, Thing *array );
  14.  
  15. #endif
  16.